<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站建中，敬请期待</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .container {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 1s ease-out;
        }

        .title {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: bounce 2s infinite;
        }

        .subtitle {
            font-size: 1.5rem;
            color: #f0f0f0;
            margin-bottom: 2rem;
            animation: fadeIn 1.5s ease-out;
        }

        .description {
            font-size: 1.1rem;
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 2rem;
            animation: fadeIn 2s ease-out;
        }

        .progress-bar {
            width: 300px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            margin: 0 auto 2rem;
            overflow: hidden;
            animation: fadeIn 2.5s ease-out;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
            background-size: 200% 100%;
            border-radius: 4px;
            animation: shimmer 2s infinite, progress 3s ease-in-out;
        }

        .contact {
            margin-top: 2rem;
            animation: fadeIn 3s ease-out;
        }

        .contact-info {
            color: #f0f0f0;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .email {
            color: #fff;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 2px solid #fff;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: inline-block;
            margin-top: 1rem;
        }

        .email:hover {
            background: #fff;
            color: #667eea;
            transform: translateY(-2px);
        }
        
        .visitor-count {
            font-size: 1rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            animation: fadeIn 3.5s ease-out;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .title { font-size: 2.5rem; }
            .subtitle { font-size: 1.2rem; }
            .container { margin: 1rem; padding: 1.5rem; }
            .progress-bar { width: 250px; }
        }

        @media (max-width: 480px) {
            .title { font-size: 2rem; }
            .progress-bar { width: 200px; }
        }
    </style>
</head>
<body>
    <div class="container">
        <h1 class="title">网站建中</h1>
        <h2 class="subtitle">敬请期待</h2>
        
        <p class="description">
            我们正在努力打造一个令人惊叹的网站<br>
            即将为您呈现更好的体验
        </p>
        
        <div class="visitor-count">
            访问人次：266388
        </div>
        
        <div class="progress-bar">
            <div class="progress-fill"></div>
        </div>
        
        <div class="contact">
            <p class="contact-info">如有任何问题，请随时联系我们</p>
            <a href="mailto:contact@example.com" class="email">联系我们</a>
        </div>
    </div>
</body>
</html>